home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / atof.0 < prev    next >
Text File  |  1996-09-02  |  839b  |  28 lines

  1.  
  2. ATOF(3)                    UNIX Programmer's Manual                    ATOF(3)
  3.  
  4. NNAAMMEE
  5.      aattooff - convert ASCII string to double
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttddlliibb..hh>>
  9.  
  10.      _d_o_u_b_l_e
  11.      aattooff(_c_o_n_s_t _c_h_a_r _*_n_p_t_r)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The aattooff() function converts the initial portion of the string pointed to
  15.      by _n_p_t_r to _d_o_u_b_l_e representation.
  16.  
  17.      It is equivalent to:
  18.  
  19.            strtod(nptr, (char **)NULL);
  20.  
  21. SSEEEE AALLSSOO
  22.      atoi(3),  atol(3),  strtod(3),  strtol(3),  strtoul(3)
  23.  
  24. SSTTAANNDDAARRDDSS
  25.      The aattooff() function conforms to ANSI C3.159-1989 (``ANSI C'').
  26.  
  27. BSD Experimental                 June 29, 1991                               1
  28.